{% include "dashboard/vm-detail/_disk-operations.html" %}
{% trans "Disks" %}
{% if not instance.disks.all %}
{% trans "No disks are added." %}
{% endif %}
{% for d in instance.disks.all %}
{% with long_remove=True %}
{% include "dashboard/_disk-list-element.html" %}
{% endwith %}
{% endfor %}
{% if instance.disks.all %}
{% url "info.resize" as resize_url %}
{% blocktrans with url=resize_url %}
If you need help resizing the disks check out our resize how-to.
{% endblocktrans %}